diff --git a/templates/user/subscribers.tmpl b/templates/user/subscribers.tmpl
index 2f21474..1e79ddb 100644
--- a/templates/user/subscribers.tmpl
+++ b/templates/user/subscribers.tmpl
@@ -1,96 +1,98 @@
{{define "subscribers"}}
{{template "header" .}}
{{if .Silenced}}
{{template "user-silenced"}}
{{end}}
-{{if .Collection.Collection}}{{template "collection-breadcrumbs" .}}{{end}}
+ {{if .Collection.Collection}}{{template "collection-breadcrumbs" .}}{{end}}
-
Subscribers
-{{if .Collection.Collection}}
- {{template "collection-nav" .Collection}}
+
Subscribers
+ {{if .Collection.Collection}}
+ {{template "collection-nav" .Collection}}
-
-{{end}}
+
+ {{end}}
- {{if .Flashes}}
- {{range .Flashes}}- {{.}}
{{end}}
-
{{end}}
+ {{if .Flashes -}}
+
+ {{range .Flashes}}- {{.}}
{{end}}
+
+ {{- end}}
{{ if eq .Filter "fediverse" }}
Username |
Since |
- {{if and (gt (len .Followers) 0) (not .FederationEnabled)}}
+ {{if and (gt (len .Followers) 0) (not .FederationEnabled)}}
Federation is disabled on this server, so followers won't receive any new posts.
- {{end}}
- {{ if gt (len .Followers) 0 }}
- {{range $el := .Followers}}
+ {{end}}
+ {{ if gt (len .Followers) 0 }}
+ {{range $el := .Followers}}
@{{.EstimatedHandle}} |
{{.CreatedFriendly}} |
- {{end}}
- {{ else }}
+ {{end}}
+ {{ else }}
No followers yet. |
- {{ end }}
+ {{ end }}
{{ else }}
{{if or .CanEmailSub .EmailSubs}}
{{if not .CanEmailSub}}
Email subscriptions are disabled on this server, so no new emails will be sent out.
{{end}}
{{if not .EmailSubsEnabled}}
Email subscriptions are disabled. {{if .EmailSubs}}No new emails will be sent out.{{end}} To enable email subscriptions, turn the option on from your blog's Customize page.
{{end}}
Email Address |
Since |
{{ if .EmailSubs }}
{{range $el := .EmailSubs}}
{{.Email.String}} |
{{.SubscribedFriendly}} |
{{end}}
{{ else }}
No subscribers yet. |
{{ end }}
{{end}}
{{ end }}
{{template "foot" .}}
{{template "body-end" .}}
{{end}}